home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’97 / Warrior’s Progress / source code / Source / Libraries / Broadcaster / Protocols / DiskInsertion.h < prev    next >
Encoding:
Text File  |  1997-06-28  |  402 b   |  22 lines  |  [TEXT/CWIE]

  1. // DiskInsertion.h
  2.  
  3. #ifndef DiskInsertion_h
  4. #define DiskInsertion_h
  5.  
  6. #ifndef ContextUser_h
  7. #include "ContextUser.h"
  8. #endif
  9.  
  10. class DiskInsertionEvent;
  11.  
  12. class DiskInsertion: public ContextUser
  13.   {
  14.     public:
  15.         virtual void ReceiveDiskInsertion( const DiskInsertionEvent& );
  16.         
  17.         virtual void ReceiveDiskInsertionFailure( const DiskInsertionEvent&,
  18.                                                                 OSErr initializationError );
  19.   };
  20.  
  21. #endif
  22.